feat: Added club Landing and Verfication Screens#27
Conversation
AnshuKanrar
left a comment
There was a problem hiding this comment.
Implemeted ClubVerification and ClubLanding Screen using Snackbar
nirvan73
left a comment
There was a problem hiding this comment.
@AnshuKanrar Please address the reviews left.
| snackbarHost = { SnackbarHost(hostState = snackbarHostState)}, | ||
| containerColor = LocalAppColors.current.background, // color changed to theme | ||
| topBar = { | ||
| NudjTopAppBar(onBackClick = onBackClick) |
There was a problem hiding this comment.
we dont need this top bar here, just want a back button acc to the figma design
| Text( | ||
| text = "Your access is on the way", | ||
| style = MaterialTheme.typography.bodyLarge, | ||
| fontSize = 20.sp, |
There was a problem hiding this comment.
instead of setting fontSize explicitly, use an appropriate typography style (e.g. titleLarge).
| Text( | ||
| text = "College Events Simplified", | ||
| style = MaterialTheme.typography.bodyLarge, | ||
| fontSize = 16.sp, |
There was a problem hiding this comment.
same here, avoid using fontSize, use the diff typography styles which are already added under the MaterialTheme
…ma, changed fontSize and style
AnshuKanrar
left a comment
There was a problem hiding this comment.
Removed the NudjTopAppBar and added custom backButton as per figma design, changed fontSize and style.
Please have a look.
Pull Request – Nudj Contribution\
🔧 What does this PR do?
-> Implemented Club Verification and Landing Screen
✅ Checklist
main🧠 Brief Explanation of Approach
Created the screen by making
Screen.ktScreenUiState.ktandScreenViewModel.ktand used figma design as reference.